home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pimagesaveas.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-29  |  1.2 KB  |  55 lines

  1. /*
  2.  *--- PImageSaveAs.h ------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 3:29 PM by Paul Ferguson.
  5.  *-------------------------------------------------------------------------
  6.  */
  7. #ifndef __PImageSaveAs__
  8. #define __PImageSaveAs__
  9.  
  10. #include "PCommand.h"
  11. #include "PMTypes.h"
  12.  
  13. class PImageSaveAs
  14. {
  15.  
  16. public:
  17.  
  18.     PImageSaveAs(        // for TIFF images
  19.         const char *    sFilename,
  20.         PMBool            bLinkOption,
  21.         PMBool            bProfile,
  22.         PMBool            bCropped,
  23.         short            nCompression,
  24.         short            nFormatStyle,
  25.         PMBool            bSaveForSep,
  26.         short            nTIFFOption);
  27.  
  28.     PImageSaveAs(        // for JPEG images
  29.         const char *    sFilename,
  30.         PMBool            bLinkOption,
  31.         PMBool            bProfile,
  32.         PMBool            bCropped,
  33.         short            nQuality,
  34.         short            nResolution);
  35.  
  36.     PImageSaveAs(        // for GIF images
  37.         const char *    sFilename,
  38.         PMBool            bLinkOption,
  39.         PMBool            bProfile,
  40.         PMBool            bCropped,
  41.         short            nTransparency,
  42.         PMBool            bInterlaced,
  43.         short            nColorPalette,
  44.         short            nColorDepth,
  45.         short            nResolution,
  46.         const char *    sCaption);
  47. private:
  48.  
  49.     PImageSaveAs();
  50. };
  51.  
  52. #endif
  53.  
  54. // end of PImageSaveAs.h
  55.